home *** CD-ROM | disk | FTP | other *** search
/ Shareware Extravaganza - Disc 4 / Shareware Extravaganza - Over 25,000 Programs (The Ultimate Shareware Company)(Disc 4 of 4)(1993).iso / cad / quikcmd2.zip / FASTCALC.DOC < prev    next >
Text File  |  1990-10-23  |  4KB  |  133 lines

  1.  
  2.  
  3.                             QUICK COMMAND version 2.0
  4.  
  5.                          Copyright 1989, 1990 Dan Jincks
  6.  
  7.  
  8.                       FASTCALC.LSP is module of QUICK COMMAND
  9.  
  10.  
  11.                This is SHAREWARE, it is NOT Public Domain software.
  12.  
  13.                This code or any part of this code may not be reproduced
  14.                in any publication without prior written permission.
  15.  
  16.                Printed copy of this code or any part of this code may NOT
  17.                be distributed without prior written permission.
  18.  
  19.                Hard copy may only be made for reference purposes by
  20.                the end user.
  21.  
  22.  
  23.                                 Dan Jincks
  24.                               Box 155A HCR 77
  25.                             Annapolis, MO 63620
  26.  
  27.  
  28.  
  29.        You are granted a limited license to use FASTCALC.LSP, a module of
  30.        QUICK COMMAND, for a 30 day trial period.  If you wish to continue
  31.        using any or all of QUICK COMMAND after the trial period, you must
  32.        become a registered user.  As a registered user, you may use QUICK
  33.        COMMAND on 1 workstation or terminal.  Additional registrations must
  34.        be bought for each additional workstation or terminal.  To become a
  35.        registered user, fill out the order form that can be printed out
  36.        from ORDERQC.DOC
  37.  
  38.  
  39.        You may send copies of QUICK COMMAND to friends and associates if
  40.        you abide by the following rules:
  41.  
  42.        1.  It may only be distributed in the original unmodified form.
  43.        2.  All original files must be included.
  44.        3.  No addition files may be added.
  45.        4.  If other files will be on the same disk, QUICK COMMAND files
  46.            must be in a library format such as ".ARC" called "QUICKCMD",
  47.            or else be put alone in a subdirectory called "QUICKCMD".
  48.        5.  You may not sell QUICK COMMAND or any part of it.
  49.        6.  You are not allowed to charge more then $5 to cover the cost of
  50.            copying and distribution.
  51.        7.  You may not distribute any printed copy of the contents of QUICK
  52.            COMMAND.
  53.  
  54.  
  55.        These AutoLISP commands and functions are designed to save you time,
  56.        and saving time means saving money.  The registration fee is very
  57.        modest compared to the savings, and much less expensive then typical
  58.        third party AutoCAD software.  Be sure to registar if you continue
  59.        to use them.
  60.                                                                 DAN
  61.  
  62.  
  63.          AutoCAD and AutoLISP are registered trade marks of Autodesk Inc.
  64.  
  65.  
  66.        *
  67.  
  68.        *****************************  1  **********************************
  69.  
  70.  
  71.  
  72.        CA and (CA)
  73.  
  74.        PURPOSE:   Calculator, 5 function with screen pick input.
  75.  
  76.        SYNOPSIS:   An Arithmetic calculator that: adds, subtracts,
  77.        multiplies, divides, and calculates the squareroot.  It is
  78.        accessable at the command prompt as "CA" or transparently while in
  79.        mid-command as "(CA)" whenever keyboard input is allowed.  Input can
  80.        be either numbers from the keyboard or by picking 2D points from the
  81.        screen as a distance.  Each step of the calculation is displayed in
  82.        the command area so that you can see what is being done.  The answer
  83.        is chained as the first number to the next step of the calculation.
  84.        The final answer when you are finished, is retained in memory as the
  85.        global variable "ANS" and can be recalled at the command prompt or
  86.        in an AutoCAD command by typing !ANS .  The answer in memory is
  87.        offered as the starting number when the calculator is called up
  88.        again in the same editing session.  The answer is only displayed and
  89.        is not offered as input to any command in progress.
  90.  
  91.        LIMITATIONS:   Screen input is limited to 2D points.  It cannot be
  92.        called up mid-command while in an AutoLISP command.
  93.  
  94.        INPUT:   Numbers from the keyboard, Pick 2D points for a distance.
  95.  
  96.        RESULTS:   Display of calculation steps and results.
  97.  
  98.        USES:   Use as you would a simple pocket calculator, plus pick up
  99.        distances in your drawing as input.
  100.  
  101.  
  102.  
  103.  
  104.  
  105.  
  106.  
  107.  
  108.  
  109.  
  110.  
  111.  
  112.  
  113.  
  114.  
  115.  
  116.  
  117.  
  118.  
  119.  
  120.  
  121.  
  122.  
  123.  
  124.  
  125.  
  126.  
  127.  
  128.  
  129.  
  130.  
  131.  
  132.        *
  133.